home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / 1com.arc / DIREX.FIX < prev    next >
Text File  |  1988-11-15  |  1KB  |  39 lines

  1.      RX for DIREX.COM
  2.  
  3. A number of readers have correctly noted that Steven Holzner's DIREX.COM (Programming/Utilities column, Volume 6 Number 1) does not handle files larger than 62K properly.  Corrected versions DIREX.COM, DIREX.ASM, and DIREX.BAS can be downloaded from the  PC Interactive Reader Service, or you can make the necessary changes to these files manually, as described below.
  4.  
  5. FOR DIREX.COM, use DEBUG to change F8 to F4 at the two addresses shown, as follows:
  6.  
  7.  
  8. DEBUG DIREX.COM
  9.  
  10. E 535 F4
  11. E 55D F4
  12.  
  13. W
  14. Q
  15.  
  16.  
  17. FOR DIREX.ASM, change the line
  18.  
  19.  
  20. MOV CX, 62*1024
  21.  
  22. near the bottom of p. 300 in the printed listing to
  23.  
  24.  
  25. MOV CX, 61*1024
  26.  
  27. Similarly, on p. 301 of the listing, change
  28.  
  29.  
  30. CMP BYTES_READ, 62*1024
  31.  
  32. to
  33.  
  34. CMP BYTES_READ, 61*1024
  35.  
  36.  
  37. FOR DIREX.BAS, change the 248 in the sixth column of lines 1630 and 1680 to 244 and correspondingly change the line checksums (column 9) for these lines to 1061 and 962, respectively.  The overall program checksum (line 270) must be decreased to 197795.
  38.  
  39. Our thanks to Bob Pirko of New York for these patches, and our apologies to readers who were inconvenienced.--Ed.